import java.util.Random;
/**
 *
 * @author mweya
 */
public class Point {
    public double x = 0;
    public double y = 0;
    
    public Point() {
        Random r = new Random();
        this.x = r.nextDouble();
        this.y = r.nextDouble();
        //System.out.println(Double.toString(this.x)+","+Double.toString(this.y));
    }
    
    public Point(double xcoordinate, double ycoordinate) {
        this.x = xcoordinate;
        this.y = ycoordinate;
    }
}